Indexed Sequential Access Method - definizione. Che cos'è Indexed Sequential Access Method
Diclib.com
Dizionario ChatGPT
Inserisci una parola o una frase in qualsiasi lingua 👆
Lingua:

Traduzione e analisi delle parole tramite l'intelligenza artificiale ChatGPT

In questa pagina puoi ottenere un'analisi dettagliata di una parola o frase, prodotta utilizzando la migliore tecnologia di intelligenza artificiale fino ad oggi:

  • come viene usata la parola
  • frequenza di utilizzo
  • è usato più spesso nel discorso orale o scritto
  • opzioni di traduzione delle parole
  • esempi di utilizzo (varie frasi con traduzione)
  • etimologia

Cosa (chi) è Indexed Sequential Access Method - definizione

FILE FORMAT
Indexed Sequential Access Method; Isam; Indexed sequential access method; Basic Indexed Sequential Access Method; Queued Indexed Sequential Access Method; Queued indexed sequential access method; Basic indexed sequential access method; QISAM; BISAM; BISAM (computing); Hierarchical Indexed Sequential Access Method; Hierarchical indexed sequential access method; HISAM (computing); HISAM

Indexed Sequential Access Method         
<database> (ISAM) An IBM file management system allowing records to be accessed either sequentially (in the order they were entered) or via an index. Each index orders the records on a different key. ISAM was followed by VSAM (Virtual Storage Access Method) and pre-dated relational databases. (2003-07-13)
ISAM         
ISAM         
ISAM (an acronym for indexed sequential access method) is a method for creating, maintaining, and manipulating computer files of data so that records can be retrieved sequentially or randomly by one or more keys. Indexes of key fields are maintained to achieve fast retrieval of required file records in Indexed files.

Wikipedia

ISAM

ISAM (an acronym for indexed sequential access method) is a method for creating, maintaining, and manipulating computer files of data so that records can be retrieved sequentially or randomly by one or more keys. Indexes of key fields are maintained to achieve fast retrieval of required file records in Indexed files. IBM originally developed ISAM for mainframe computers, but implementations are available for most computer systems.

The term ISAM is used for several related concepts:

  • The IBM ISAM product and the algorithm it employs.
  • A database system where an application developer directly uses an application programming interface to search indexes in order to locate records in data files. In contrast, a relational database uses a query optimizer which automatically selects indexes.
  • An indexing algorithm that allows both sequential and keyed access to data. Most databases use some variation of the B-tree for this purpose, although the original IBM ISAM and VSAM implementations did not do so.
  • Most generally, any index for a database. Indexes are used by almost all databases.